List of freely available resources to study computer graphics programming.
Discover gists
The problem with Arc is that it doesn't allow exporting data (history, bookmarks) to a file natively.
One way to do this is to use a script but that only exports Bookmarks and not the history.
I don't really use the bookmarks feature that much; what I really liked about Arc was that it was really easy to navigate to somewhere I already visited.
So, if you're like me, follow this guide and you'll be able to import your browsing history into Zen browser!
| # | |
| # Minecraft Essentials worth.yml - optimized for an ideal balanced Economy! | |
| # https://gist.github.com/queengooborg/92d08120f0d6d25175f6c7a30e3ccac7 | |
| # | |
| # Compatible MC Version: 1.13.x+ | |
| # Latest MC Version: 26.1 | |
| # | |
| # Maintained by Vinyl Da.i'gyu-Kazotetsu [https://www.queengoob.org] | |
| # Generated by https://github.com/queengooborg/mc-toolkit | |
| # Base prices from X00LA's version: https://github.com/X00LA/Bukkit-Essentials-worth.yml |
| # This is minimal demonstration on how to obtain text metadata and album art from Sendspin and display it using LVGL on an ESP32-S3 Box 3. | |
| # The track title is displayed below the cover art will scroll if too long for the screen. | |
| # Touching the screen pops up controls for 5 seconds where you can pause/resume and go to the previous/next track | |
| # Swiping left or right will go to a different page. It should show a picture of the artist (but there are some bugs on the MA side, so this doesn't work consistently) | |
| # The main page displays the track progress in m:ss format on the lower left and the track duration on the right in m:ss format. | |
| --- | |
| substitutions: | |
| name: esp32-s3-box-3 | |
| friendly_name: ESP32 S3 Box 3 Sendspin | |
| font_glyphsets: "GF_Latin_Core" |
22 copy/paste-ready prompts for building your own AI agent system. Each prompt builds a functional system or implements a proven best practice you can hand to an AI coding assistant.
Replace placeholders like <your-workspace>, <your-messaging-platform>, and <your-model> with your own values.
| Visual Studio 2026 18.x | |
| Professional: NVTDK-QB8J9-M28GR-92BPC-BTHXK | |
| Enterprise: VYGRN-WPR22-HG4X3-692BF-QGT2V | |
| Product Year Version Product Keys | |
| Visual Studio 2022 2021 17.x | |
| Professional: TD244-P4NB7-YQ6XK-Y8MMM-YWV2J | |
| Enterprise: VHF9H-NXBBB-638P6-6JHCY-88JWH | |
| Visual Studio 2019 2019 16.x |
| # Complete Winget Installer for Tiny10/LTSC | |
| # Run as Administrator | |
| # Updated: March 2026 — Fixed admin check typo; VCLibs + UI.Xaml use stable direct URLs | |
| # Ensure we're running with admin rights | |
| if (-not ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]"Administrator")) { | |
| Write-Host "This script requires administrative privileges. Please run as Administrator." -ForegroundColor Red | |
| exit 1 | |
| } |
| Meta (Instagram, Facebook) | |
| // Узлы | |
| 157.240.253.174, 157.240.253.172, 157.240.253.167, 157.240.253.63, 157.240.253.32 | |
| 157.240.252.174, 157.240.252.172, 157.240.252.167, 157.240.252.63, 157.240.252.38 | |
| 57.144.112.34, 57.144.110.1, 157.240.205.174, 87.245.223.97 | |
| // Подсети | |
| 213.102.128.0/24 | |
| 204.15.20.0/22 | |
| 199.201.0.0/16 |
Write a handoff document summarising this session for future agents/sessions.
-
Determine today's date (use the
currentDatecontext if available). -
List the existing files under
docs/agents/handoff/to find the highest sequence number already used today, then increment by one. Format:NNN(zero-padded to 3 digits, starting at001). -
Use the current session name, otherwise derive a short kebab-case topic slug from the main subject of this session (e.g.
eth-brownie-optimization,filter-sol-wsol-command).
It turns out that MacOS Tahoe can generate and use secure-enclave backed SSH keys! This replaces projects like https://github.com/maxgoedjen/secretive
There is a shared library /usr/lib/ssh-keychain.dylib that traditionally has been used to add smartcard support
to ssh by implementing PKCS11Provider interface. However since recently it also implements SecurityKeyProivder
which supports loading keys directly from the secure enclave! SecurityKeyProvider is what is normally used to talk to FIDO2 devices (e.g. libfido2 can be used to talk to your Yubikey). However you can now use it to talk to your Secure Enclave instead!